class Lab4Ex1
{
  public static void main(String args[])
  {
    int count;
    count = 10;
    while (count >= 0)
    {
      System.out.println(count);
      count = count + 1;
    }
  }
}
